Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @pankod/refine-antd to v3.70.4 #2395

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@pankod/refine-antd (source) 3.22.1 -> 3.70.4 age adoption passing confidence

Release Notes

refinedev/refine (@​pankod/refine-antd)

v3.70.4

Compare Source

Patch Changes

v3.70.3

Compare Source

Patch Changes

v3.70.2

Compare Source

Patch Changes

v3.70.1

Compare Source

Patch Changes

v3.70.0

Compare Source

Minor Changes

v3.69.0

Compare Source

Minor Changes

v3.68.0

Compare Source

Minor Changes

v3.67.0

Compare Source

Minor Changes

v3.66.0

Compare Source

Minor Changes

v3.65.0

Compare Source

Minor Changes

v3.64.4

Compare Source

Patch Changes

v3.64.3

Compare Source

Patch Changes

v3.64.2

Compare Source

Patch Changes

v3.64.1

Compare Source

Patch Changes

v3.64.0

Compare Source

Minor Changes
  • #​3062 6c2ed708a9a Thanks @​aliemir! - - Updated components and their type imports to make them compatible with swizzle feature.
    • Added refine.config.js to configure the swizzle feature.

v3.63.0

Compare Source

Minor Changes
  • #​3062 6c2ed708a9a Thanks @​aliemir! - - Updated components and their type imports to make them compatible with swizzle feature.
    • Added refine.config.js to configure the swizzle feature.

v3.62.0

Compare Source

Minor Changes
  • #​2872 da3fc4a702 Thanks @​TDP17! - Feat: Added ability to manage breadcrumb component globally via options

    The option set in individual CRUD components takes priority over the global option

v3.61.0

Compare Source

Minor Changes
  • #​2872 da3fc4a702 Thanks @​TDP17! - Feat: Added ability to manage breadcrumb component globally via options

    The option set in individual CRUD components takes priority over the global option

v3.60.0

Compare Source

Minor Changes
  • #​2839 5388a338ab Thanks @​aliemir! - Deprecation

    ignoreAccessControlProvider prop on buttons is deprecated. Use accessContro.enabled instead.

    Features

    accessControl.enabled prop is added to buttons to enable/disable access control for buttons.
    accessControl.hideIfUnauthorized prop is added to buttons to hide the button if access is denied.

  • #​2836 e43e9a17ae Thanks @​alicanerdurmaz! - added locales prop to date fields

Patch Changes

v3.59.0

Compare Source

Minor Changes
Patch Changes

v3.57.0

Compare Source

Minor Changes
  • Only or was supported as a conditional filter. Now and and or can be used together and nested. 🚀

    {
      operator: "or",
      value: [
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "John Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 30,
            },
          ],
        },
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "JR Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 1,
            },
          ],
        },
      ],
    }
    
Patch Changes

v3.56.0

Compare Source

Minor Changes
  • #​2751 addff64c77 Thanks @​yildirayunlu! - Only or was supported as a conditional filter. Now and and or can be used together and nested. 🚀

    {
      operator: "or",
      value: [
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "John Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 30,
            },
          ],
        },
        {
          operator: "and",
          value: [
            {
              field: "name",
              operator: "eq",
              value: "JR Doe",
            },
            {
              field: "age",
              operator: "eq",
              value: 1,
            },
          ],
        },
      ],
    }
    
Patch Changes

v3.55.3

Compare Source

Patch Changes
  • Fixed providers property empty array state in <AuthPage /> component

v3.55.1

Compare Source

Patch Changes

v3.55.0

Compare Source

Minor Changes
  • Added infinite loading example to antd useSelect()
    useSelect() fetchSize prop is deprecated. From now pagination should be used
Patch Changes
  • Add AuthProps type export

v3.54.0

Compare Source

Minor Changes
Patch Changes

v3.53.0

Compare Source

Minor Changes
    • Added new component core and mantine support.
    • Move Auth types @pankod/refine-ui-types to @pankod/refine-core

v3.52.0

Compare Source

Minor Changes

v3.51.0

Compare Source

Minor Changes
  • Deprecated LoginPage.

    Before

    import { LoginPage } from "@&#8203;pankod/refine-antd";
    
    <Refine
      LoginPage={LoginPage}
      ...
    />

    After

    import { AuthPage } from "@&#8203;pankod/refine-antd";
    
    <Refine
      LoginPage={AuthPage}
      ...
    />

v3.50.0

Compare Source

Minor Changes
  • Deprecated LoginPage.

    Before

    import { LoginPage } from "@&#8203;pankod/refine-antd";
    
    <Refine
      LoginPage={LoginPage}
      ...
    />

    After

    import { AuthPage } from "@&#8203;pankod/refine-antd";
    
    <Refine
      LoginPage={AuthPage}
      ...
    />

v3.49.0

Compare Source

Minor Changes
  • #​2580 e1ab7da6b3 Thanks @​yildirayunlu! - Deprecated LoginPage.

    Before

    import { LoginPage } from "@&#8203;pankod/refine-antd";
    
    <Refine
      LoginPage={LoginPage}
      ...
    />

    After

    import { AuthPage } from "@&#8203;pankod/refine-antd";
    
    <Refine
      LoginPage={AuthPage}
      ...
    />

v3.48.10

Compare Source

Patch Changes
  • ReadyPage examples link fixed.

v3.48.9

Compare Source

Patch Changes

v3.48.8

Compare Source

Patch Changes
  • Updated disabled attribute of buttons in CRUD components according to isLoading prop.

  • Removed redundant type inheritance

  • Updated dependencies []:

v3.48.7

Compare Source

Patch Changes

v3.48.6

Compare Source

Patch Changes

v3.48.5

Compare Source

Patch Changes
  • Rename reset-password -> forgot-password on docs.

v3.48.4

Compare Source

Patch Changes
  • Rename reset-password -> forgot-password on docs.

v3.48.3

Compare Source

Patch Changes

v3.48.2

Compare Source

Patch Changes
  • Fixed useModalForm & useStepsForm return type

v3.48.1

Compare Source

Patch Changes
  • ReadyPage examples link fixed.

v3.48.0

Compare Source

Minor Changes
  • Add providers support on AuthPage register page.
Patch Changes

v3.47.0

Compare Source

Minor Changes
Patch Changes

v3.46.4

Compare Source

Patch Changes
    • Auth pages background color fixed.
    • Removed unused updatePasswordLink prop from auth pages.
    • Removed onSubmit prop from auth pages. use formProps instead.
  • Updated dependencies []:

v3.46.3

Compare Source

Patch Changes

v3.46.2

Compare Source

Patch Changes
  • Fixed the spacing between icon and breadcrumb label in Breadcrumb component.

v3.46.0

Compare Source

Minor Changes
  • Added formProps property support for AuthPage component

v3.45.0

Compare Source

Minor Changes

v3.44.0

Compare Source

Minor Changes
  • Added render prop to Sider component. You can get dashboard, logout and items from render props to customize the Sider component.

  • Added <AuthPage> for Ant Design. <AuthPage> is a component that provides a login, register, forgot password and update password pages.

Patch Changes
  • Fixed version of react-router to 6.3.0

  • Passed collapsed prop to render method in Sider component of @pankod/refine-antd.

  • Updated dependencies []:

v3.43.1

Compare Source

Patch Changes

v3.43.0

Compare Source

Minor Changes
  • #​2447 628a37a675 Thanks @​biskuvit! - Added <AuthPage> for Ant Design. <AuthPage> is a component that provides a login, register, forgot password and update password pages.
Patch Changes

v3.42.1

Compare Source

Patch Changes

v3.42.0

Compare Source

Minor Changes
  • #​2454 72487a4126 Thanks @​ozkalai! - Added render prop to Sider component. You can get dashboard, logout and items from render props to customize the Sider component.
Patch Changes

v3.41.0

Compare Source

Minor Changes
  • Added support nested sorting

v3.40.0

Compare Source

Minor Changes

v3.39.0

Compare Source

Minor Changes
  • Update type declaration generation with tsc instead of tsup for better navigation throughout projects source code.
Patch Changes

v3.38.0

Compare Source

Minor Changes
  • #​2440 0150dcd070 Thanks @​aliemir! - Update type declaration generation with tsc instead of tsup for better navigation throughout projects source code.
Patch Changes

v3.37.11

Compare Source

Patch Changes
  • Fix: useStepsForm's submit function can be overridden

v3.37.10

Compare Source

Patch Changes
  • Fix: useStepsForm's submit function can be overridden

v3.37.9

Compare Source

Patch Changes

v3.37.8

Compare Source

Patch Changes
  • Fix: Wrap with <CanAccess /> component to parent sider items

    <Refine
      accessControlProvider={{
        can: async ({ action, resource }) => {
          // console.log({ action, resource });
          // output: {action: "list", resource: "cms" }
    
          return { can: true };
        },
      }}
      resources={[
        {
          name: "CMS",
        },
        {
          name: "posts",
          parentName: "CMS",
          list: PostList,
        },
      ]}
    />

v3.37.7

Compare Source

Patch Changes
  • #​2411 c61470a2e0 Thanks @​omeraplak! - Fix: Wrap with <CanAccess /> component to parent sider items

    <Refine
      accessControlProvider={{
        can: async ({ action, resource }) => {
          // console.log({ action, resource });
          // output: {action: "list", resource: "cms" }
    
          return { can: true };
        },
      }}
      resources={[
        {
          name: "CMS",
        },
        {
          name: "posts",
          parentName: "CMS",
          list: PostList,
        },
      ]}
    />

v3.37.6

Compare Source

Patch Changes
  • Fix useModalForm hook reset issue after successful submit

v3.37.5

Compare Source

Patch Changes

v3.37.4

Compare Source

Patch Changes
  • Updated <Edit/> component's default footer buttons property wrapper with <Space/> component like `

v3.37.3

Compare Source

Patch Changes
  • Updated <Edit/> component's default footer buttons property wrapper with <Space/> component like `

v3.37.1

Compare Source

Patch Changes
  • Fix: useStepsForm's submit function can be overridden

v3.37.0

Compare Source

Minor Changes
  • Separated styles.min.css file as antd.min.css and reset.min.css to make users able to turn off reset styles when needed.

v3.36.0

Compare Source

Minor Changes
  • #​2312 ba5646c65c Thanks @​aliemir! - Separated styles.min.css file as antd.min.css and reset.min.css to make users able to turn off reset styles when needed.

v3.35.4

Compare Source

Patch Changes
  • Upgraded react-query version to 4.

v3.35.3

Compare Source

Patch Changes

v3.35.2

Compare Source

Patch Changes
  • Remove data-testid props from buttons in crud components to make use of button test ids presented by @pankod/refine-ui-types package.
  • Updated @pankod/refine-antd and @pankod/refine-mui fields properties by using @pankod/refine-ui-types common fields types.

    Updated @pankod/refine-antd and @pankod/refine-mui fields tests by using @pankod/refine-ui-tests common fields tests.

    Updated @pankod/refine-ui-tests fields properties.

  • Added @pankod/refine-ui-tests and @pankod/refine-ui-types packages. Now, all of button prop types comes from @pankod/refine-ui-types package and all of button tests comes from @pankod/refine-ui-tests package.

    Thus, button types and tests are managed by @pankod/refine-ui-types package and @pankod/refine-ui-tests package.

  • Updated dependencies []:

v3.35.1

Compare Source

Patch Changes
  • #​2216 201846c77d Thanks @​aliemir! - Remove data-testid props from buttons in crud components to make use of button test ids presented by @pankod/refine-ui-types package.
  • #​2216 201846c77d Thanks @​aliemir! - Updated @pankod/refine-antd and @pankod/refine-mui fields properties by using @pankod/refine-ui-types common fields types.

    Updated @pankod/refine-antd and @pankod/refine-mui fields tests by using @pankod/refine-ui-tests common fields tests.

    Updated @pankod/refine-ui-tests fields properties.

  • #​2216 201846c77d Thanks @​aliemir! - Added @pankod/refine-ui-tests and @pankod/refine-ui-types packages. Now, all of button prop types comes from @pankod/refine-ui-types package and all of button tests comes from @pankod/refine-ui-tests package.

    Thus, button types and tests are managed by @pankod/refine-ui-types package and @pankod/refine-ui-tests package.

  • Updated dependencies [201846c77d]:

v3.35.0

Compare Source

Minor Changes
  • Add React@18 support 🚀
Patch Changes
  • Fixed isMobile control in Sider component detecting desktop dimensions as mobile on route changes

v3.34.0

Compare Source

Minor Changes
Patch Changes

v3.33.2

Compare Source

Patch Changes
  • Updated console.warn's to trigger once.

v3.33.1

Compare Source

Patch Changes

v3.33.0

Compare Source

Minor Changes
  • All of the refine packages have dependencies on the @pankod/refine-core package. So far we have managed these dependencies with peerDependencies + dependencies but this causes issues like #​2183. (having more than one @​pankod/refine-core version in node_modules and creating different instances)

    Managing as peerDependencies + devDependencies seems like the best way for now to avoid such issues.

v3.32.0

Compare Source

Minor Changes
  • #​2217 b4aae00f77 Thanks @​omeraplak! - All of the refine packages have dependencies on the @pankod/refine-core package. So far we have managed these dependencies with peerDependencies + dependencies but this causes issues like #​2183. (having more than one @​pankod/refine-core version in node_modules and creating different instances)

    Managing as peerDependencies + devDependencies seems like the best way for now to avoid such issues.

v3.31.0

Compare Source

Minor Changes
  • BREAKING Updated useStepsForm prop isBackValidate with default false instead of true to achieve consistency between packages (@pankod/refine-react-hook-form).
Patch Changes
  • Fix useModal hook doesn't return modalProps

v3.30.0

Compare Source

Minor Changes
  • #​2206 874b05af37 Thanks @​aliemir! - BREAKING Updated useStepsForm prop isBackValidate with default false instead of true to achieve consistency between packages (@pankod/refine-react-hook-form).
Patch Changes

v3.29.0

Compare Source

Minor Changes
  • Added defaultSetFilterBehavior prop to useTable and useSimpleList hooks. Return setFilters and setSorter from useTable of @pankod/refine-core.

    This feature will let @pankod/refine-antd users to set filters manually and change filter setter logic (defaults to merge).

Patch Changes

v3.28.0

Compare Source

Minor Changes
  • #​2168 a9196ffe2d Thanks @​aliemir! - Added defaultSetFilterBehavior prop to useTable and useSimpleList hooks. Return setFilters and setSorter from useTable of @pankod/refine-core.

    This feature will let @pankod/refine-antd users to set filters manually and change filter setter logic (defaults to merge).

Patch Changes

v3.27.6

Compare Source

Patch Changes
  • Fixed the Unhandled Promise error on console for useForm with failed requests (Resolves #​2156).

    This fix only catches the errors triggered by submitting the form, requests by invoking onFinish function should be handled by the user.

v3.27.5

Compare Source

Patch Changes
  • #​2161 8490f3c38f Thanks @​aliemir! - Fixed the Unhandled Promise error on console for useForm with failed requests (Resolves #​2156).

    This fix only catches the errors triggered by submitting the form


Configuration

📅 Schedule: Branch creation - "every weekend" in timezone US/Eastern, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/pankod-refine-antd-3.x branch 10 times, most recently from effa8c0 to 9ec8d74 Compare September 23, 2024 20:30
@renovate renovate bot force-pushed the renovate/pankod-refine-antd-3.x branch 5 times, most recently from 01c46cb to 67026ab Compare September 30, 2024 16:02
@renovate renovate bot force-pushed the renovate/pankod-refine-antd-3.x branch from 67026ab to 63bb786 Compare October 2, 2024 13:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants